home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland Pascal with Objects 7.0 / DDOCDEMO.ZIP / TUTOR01.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1992-10-27  |  496 b   |  24 lines

  1. {************************************************}
  2. {                                                }
  3. {   Turbo Vision 2.0 Demo                        }
  4. {   Copyright (c) 1992 by Borland International  }
  5. {                                                }
  6. {************************************************}
  7.  
  8. program Tutor01;
  9.  
  10. uses App;
  11.  
  12. type
  13.   TTutorApp = object(TApplication)
  14.   end;
  15.  
  16. var
  17.   TutorApp: TTutorApp;
  18.  
  19. begin
  20.   TutorApp.Init;
  21.   TutorApp.Run;
  22.   TutorApp.Done;
  23. end.
  24.